don't support them yet.
* xfns.c (x_set_font): Report the error message properly.
* xfns.c (Fx_parse_geometry): No need to call check_x here; it
doesn't interact with the server at all, and we need it in order
to create our first frame.
result = x_new_font (f, name);
UNBLOCK_INPUT;
- if (result)
+ if (result == 1)
error ("Font \"%s\" is not defined", name);
+ if (result == 2)
+ error ("the characters of the given font have varying widths");
}
void
unsigned int width, height;
Lisp_Object values[4];
- check_x ();
CHECK_STRING (string, 0);
geometry = XParseGeometry ((char *) XSTRING (string)->data,